home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 855 b | 40 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWEnvDef.idl
- // Release Version: $ ODF 2 $
- //
- // Contains: Standard IDL definitions for OpenDoc Development Framework
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWENVDEF_IDL
- #define FWENVDEF_IDL
-
- // ------ Target platform
-
- #ifdef _WIN32
- #define FW_BUILD_WIN
- #else
- #define FW_BUILD_MAC
- #endif
-
- // ------ OpenDoc version
-
- #define FW_OPENDOC_DR1 1
- #define FW_OPENDOC_DR2 2
- #define FW_OPENDOC_DR3 3
- #define FW_OPENDOC_DR4 4
- #define FW_OPENDOC_100 FW_OPENDOC_DR4
-
- #ifdef FW_BUILD_MAC
- #define FW_OPENDOC_VERSION FW_OPENDOC_DR4
- #endif
-
- #ifdef FW_BUILD_WIN
- #define FW_OPENDOC_VERSION FW_OPENDOC_DR2
- #endif
-
- #endif
-